chore: basic structure of files to rewrite in TS
This commit is contained in:
23
tsconfig.json
Normal file
23
tsconfig.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2019",
|
||||
"module": "commonjs",
|
||||
"lib": ["ES2019"],
|
||||
"moduleResolution": "node",
|
||||
"allowJs": false,
|
||||
"checkJs": false,
|
||||
"declaration": true,
|
||||
"sourceMap": false,
|
||||
"outDir": "./build",
|
||||
"rootDir": "./src",
|
||||
"removeComments": false,
|
||||
"noEmitOnError": true,
|
||||
"importHelpers": false,
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"incremental": false
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user