Added JS engine.

This commit is contained in:
2021-09-18 00:39:00 -07:00
parent 314f9a1aa7
commit 833ec5ae5f
52 changed files with 547 additions and 35712 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"target": "ES3",
"lib": [ "esnext" ],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"module": "esnext",
"jsx": "preserve",
"baseUrl": ".",
"outDir": "build/assets/scripts",
"alwaysStrict": false,
"noImplicitUseStrict": true
},
"exclude": [
"node_modules"
],
"include": [
"**/*.ts", "**/*.tsx", "**/*.d.ts"
]
}