diff options
author | crupest <crupest@outlook.com> | 2023-07-14 00:30:17 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-07-14 00:30:17 +0800 |
commit | 810185b8df1fd191cd4a5e7eb92e1986000880b1 (patch) | |
tree | b917c84f12d715fc6c66377feca9e14df787144c /FrontEnd/tools/tsconfig.json | |
parent | 4a069bf1268f393d5467166356f691eb89963152 (diff) | |
download | timeline-810185b8df1fd191cd4a5e7eb92e1986000880b1.tar.gz timeline-810185b8df1fd191cd4a5e7eb92e1986000880b1.tar.bz2 timeline-810185b8df1fd191cd4a5e7eb92e1986000880b1.zip |
...
Diffstat (limited to 'FrontEnd/tools/tsconfig.json')
-rw-r--r-- | FrontEnd/tools/tsconfig.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/FrontEnd/tools/tsconfig.json b/FrontEnd/tools/tsconfig.json new file mode 100644 index 00000000..8c9b3c47 --- /dev/null +++ b/FrontEnd/tools/tsconfig.json @@ -0,0 +1,21 @@ +{ + // This is an alias to @tsconfig/node16: https://github.com/tsconfig/bases + "extends": "ts-node/node16/tsconfig.json", + // Most ts-node options can be specified here using their programmatic names. + "ts-node": { + // It is faster to skip typechecking. + // Remove if you want ts-node to do typechecking. + "transpileOnly": true, + "compilerOptions": { + // compilerOptions specified here will override those declared below, + // but *only* in ts-node. Useful if you want ts-node and tsc to use + // different options with a single tsconfig.json. + } + }, + "compilerOptions": { + // typescript options here + }, + "include": [ + "**/*" + ] +}
\ No newline at end of file |