mirror of
https://github.com/SomboChea/ui
synced 2024-11-04 21:54:30 +07:00
26 lines
478 B
JSON
26 lines
478 B
JSON
{
|
|
"compilerOptions": {
|
|
"skipLibCheck": true,
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"noImplicitAny": false,
|
|
"strict": true,
|
|
"outDir": "build",
|
|
"allowSyntheticDefaultImports": true,
|
|
"jsx": "react",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"checkJs": false,
|
|
"esModuleInterop": true,
|
|
},
|
|
"include": [
|
|
"src",
|
|
"types/*.d.ts",
|
|
"scripts/lib",
|
|
"node_modules/config"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|