Transformer architecture implemented in TypeScript with WebGPU.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
nn/tsconfig.json

24 lines
504 B

{
"compilerOptions": {
"baseUrl": ".",
"outDir": "build",
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Node",
"esModuleInterop": true,
"lib": [
"DOM", "ES2022"
],
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"declaration": false,
"sourceMap": true,
},
"include": [
"src/**/*.ts",
],
}