mirror of
https://github.com/Wessel/Snowflakey.git
synced 2026-07-27 02:31:57 +02:00
Rewrite into TypeScript
This commit is contained in:
23
tsconfig.json
Normal file
23
tsconfig.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"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" ]
|
||||
}
|
||||
Reference in New Issue
Block a user