mirror of
https://github.com/cedoor/zuauth.git
synced 2026-01-08 20:27:55 -05:00
27 lines
775 B
JSON
27 lines
775 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSources": false,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"preserveWatchOutput": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2015", "DOM"],
|
|
"module": "CommonJS",
|
|
"target": "es6",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|