mirror of
https://github.com/dkhamsing/open-source-ios-apps.git
synced 2025-01-22 06:39:12 +01:00
20 lines
452 B
JSON
20 lines
452 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "esnext"],
|
|
"noImplicitAny": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"removeComments": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "public", ".cache"]
|
|
}
|