mirror of
https://github.com/eliasstepanik/core.git
synced 2026-01-11 22:28:28 +00:00
19 lines
440 B
JSON
19 lines
440 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"lib": ["es2016", "dom"],
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"moduleResolution": "node",
|
|
"preserveWatchOutput": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": false,
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"declarationDir": "./dist"
|
|
},
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|