-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (31 loc) · 1.02 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compilerOptions": {
"module": "none",
"noImplicitAny": true,
"outFile": "./www/index.js",
"preserveConstEnums": true,
"removeComments": true,
"rootDir": "./src/",
"sourceMap": true,
"target": "es5",
"moduleResolution": "node",
"strict": true
}
}
// {
// "compilerOptions": {
// "module": "amd", // Change module to "amd"
// "moduleResolution": "node", // Adjust module resolution to "node"
// "target": "ES2020",
// "sourceMap": false,
// "outFile": "www/index.js", // Output combined JS file in www directory
// "rootDir": "src", // Root directory for TypeScript files
// "strict": true, // Enable strict type-checking options
// "esModuleInterop": true, // Enable compatibility with CommonJS and AMD modules
// "skipLibCheck": true,
// "removeComments": true
// },
// "include": ["src/**/*"], // Include all .ts files in the src directory
// "types": ["p5"]
// }
// // i dont know what the fuck a amd module is but thanks chat gpt