mirror of
https://github.com/Wessel/Snowflakey.git
synced 2026-06-05 18:55:49 +02:00
24 lines
617 B
JSON
24 lines
617 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [ "es2015", "es2016", "es2017", "esnext" ],
|
|
"watch": true,
|
|
"types": [ "node" ],
|
|
"outDir": "./dist",
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"strict": false,
|
|
"allowJs": true,
|
|
"rootDirs": [ "./lib", "./tests" ],
|
|
"declaration": false,
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [ "lib/**/*", "tests/**/*" ],
|
|
"exclude": [ "node_modules" ]
|
|
}
|